home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER:Jump2Marked.dsrx 1.0 (30.5.00) Copyright (c) Nils Görs
-
- bind this script as follows:
- Title: Jump2Next sel Title: Jump2prev sel
- Path: Jump2Marked.dsrx Path: Rexx/Jump2Marked.dsrx PREV
- */
-
- options results
- PARSE ARG args
-
- DSPort = SUBWORD(args,WORDS(args))
-
- IF WORDS(args) > 1 THEN DO
- direction = WORD(args,1)
- direction = UPPER(direction)
- END
-
- address value DSPort
-
- SET LOCKGUI 1
-
-
- IF direction = "PREV" THEN direction = PREVSEL
- ELSE direction = NEXTSEL
-
- GOTO direction
-
- SET LOCKGUI 0
-